From: Christoph Egger Date: Mon, 22 Apr 2013 11:59:14 +0000 (+0200) Subject: tools/xenbackendd: make 'gmake clean' properly cleaning X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~6966 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/%22bookmarks://%22Dat/%22http:/www.example.com/cgi/%22https:/%22bookmarks:/%22Dat?a=commitdiff_plain;h=d6d33360662d87d3e456e4618a3eafd38db5b09c;p=xen.git tools/xenbackendd: make 'gmake clean' properly cleaning tools/xenbackendd: properly cleanup Do not leave builds on gmake clean. Signed-off-by: Christoph Egger Reviewed-by: Matt Wilson Acked-by: Ian Campbell --- diff --git a/tools/xenbackendd/Makefile b/tools/xenbackendd/Makefile index 8374ad31a4..31e5c62dcf 100644 --- a/tools/xenbackendd/Makefile +++ b/tools/xenbackendd/Makefile @@ -30,7 +30,7 @@ install: build .PHONY: clean clean: - rm -f $(DEPS) + $(RM) *.a *.so *.o $(DEPS) xenbackendd xenbackendd: xenbackendd.o $(CC) $(LDFLAGS) $< -o $@ $(LDLIBS) $(APPEND_LDFLAGS)